home *** CD-ROM | disk | FTP | other *** search
- //------ Jake the Dormer Snake finds a gap chasm
- //------ HieghtField mountain :
-
- #include "colors.inc"
- #include "shapes.inc"
- #include "textures.inc"
- #include "shape05.inc"
- #include "jake.inc"
- #include "plant.inc"
-
-
-
- #default { texture {
- color Red
- ambient 0.35
- diffuse 0.7
- phong 1
- phong_size 60
- }}
-
- #declare T1 = texture {
- color Gold
- ambient 0.4
- diffuse 0.8
- phong 1
- phong_size 60
- }
-
-
- camera {
- location <100 10700 -1600>
- direction <0 0 1.5>
- up <0 1 0>
- right <1.3 0 0>
- look_at <100 10000 0>
- }
-
- object {
- light_source {
- <-8100 19050 -1000 >
- color White
- }
- }
-
-
-
- object {
- light_source {
- <80000 19750 1000 >
- color Gold
- }
- }
-
- object {
- light_source {
- <-80000 21750 1000 >
- color DkGreenCopper
- }
- }
-
-
-
- //------ World
- object {
- union {
- plane { <0 1 0> 50000 }
- plane { <0 1 0> -50000 }
- }
- texture {
- color Black
- ambient 1
- diffuse 0
- }
- }
-
-
- //----------- Hight Field Mountains
- #declare HILL1 =
- object {
- height_field {
- pot
- "pot1.pot"
- }
- texture {
- image_map {
- <1 0 -1>
- gif "frac5.gif"
- }
- ambient .15
- phong 1
- diffuse .8
- }
- scale <2000 10000 2000> translate <-1000 0 -1000> rotate <0 -110 0>
- }
-
-
-
- //----------- Hight Field Mountains
- #declare HILL2 =
- object {
- height_field {
- pot
- "pot1.pot"
- }
- texture {
- image_map {
- <1 0 -1>
- gif "frac5.gif"
- }
- ambient .15
- phong 1
- diffuse .4
- }
- scale <50000 25000 50000>
- translate <-30000 -16500 -3000>
- rotate <0 70 0>
- translate <-6000 0 -2000>
- }
-
-
-
-
- #declare Ball =
- object {
- sphere { <0 0 0> 60 }
- texture {
- color Red
- phong 1
- }
- }
-
-
- fog {
- color Black
- 50000
- }
-
-
- object { HILL1 }
- object { HILL2 }
- composite { CHUCK scale <6 6 6> rotate <0 0 30> rotate <0 -140 0> translate <-450 10400 360> }
-
-
- #declare Plant =
- composite {
- composite { BUNCH4 }
- composite { BUNCH4 rotate < 0 45 0> }
- composite { BUNCH3 translate <0 15 0> }
- }
-
- composite { Plant scale <3 3 3> translate <120 9910 0> }
- composite { Plant scale <3 3 3> translate <-5 9910 450> }
- composite { Plant scale <3 3 3> translate <-140 9910 0> }
- composite { Plant scale <3 3 3> translate <-70 9910 140> }
-
-
-
-
-
- ə